/* body settings */
body {
  margin: 0px;
  background-color: #1f2833;
}
/* navigation bar styling */
nav {
  color: #c5c6c7;
  background-color: #1f2833;
  text-decoration: none;
  padding-right: 5px;
  padding-left: 5px;
  font-family: arial;
}
nav table {
  width: 100%;
}
nav table tr td a {
  margin: 5px;
}
#team-name-small {
  display: none;
  margin: 0px;
  padding: 0px;
  font-size: 10px;
}
#team-name {
  font-size: 10px;
}
#project-name {
  font-size:40px;
  font-weight:bold;
  font-family:Agency FB;
}
#nav-bar-buttons-column {
  text-align: right;
}
#menu-button, #menu-button-icon {
  display: none;
}
@media (max-width: 790px){
  #team-name {
    display: none;
  }
  #team-name-small {
    display: block;
  }
}
@media (max-width: 675px){
  #team-name-small {
    display: none;
  }
  #team-name {
    display: inline;
  }
  #nav-bar-buttons-column {
    text-align: center;
  }
  nav table tr td, nav table tr  {
    display: block;
  }
  #project-name {
    font-size: 250%;
  }
  nav {
    height: 90px;
  }
}

/* navigation bar styling -> team logo and name */
#nav-bar-logo {
  color:black;
  width:30%;
  color: #c5c6c7;
}
/* navigation bar styling -> links and sections */
#nav-bar-buttons-sec {
  margin-top: 16px;
  padding-right: auto;
}
.nav-bar-buttons, .nav-bar-buttons:visited, .nav-bar-buttons:active {
  color: #c5c6c7;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.nav-bar-buttons:hover {
  text-decoration: none;
  background-color: #45a29e;
  padding: 10px
}
/* navigation bar styling -> links and sections -> current page (section) */
#current-page, #current-page:visited, #current-page:hover, #current-page:active, #current-page:focus {
  color: black;
  background-color:#66fcf1 ;
  padding: 10px;
  text-decoration: none;
    cursor: default;
}

@media (max-width: 460px) {
  .nav-bar-buttons {
    font-size: 11.4px;
  }
}
@media (max-width: 420px) {
  #nav-bar-buttons-sec {
    display: none;
    background-color: #1f2833;
    position: absolute;
    right: 0px;
    transition: 0.3s;
  }
  #team-name {
    display: none;
  }
  #menu-button-icon {
    display: block;
    font-size: 35px;
    transition: 0.3s;
  }
  nav table tr td, nav table tr  {
    display: inline-table;
  }
  nav {
    height: 55px;
  }
  #menu-button-icon {
    position: absolute;
    right: 5px;
    top: 3px;
    animation: transitionIn 0.5s;
  }
  #menu-button:checked + #nav-bar-buttons-sec {
    display: inline-grid;
  }
  #menu-button:checked ~ label {
    transform: rotate(225deg);
  }
  main {
    animation: transitionIn 0.5s;
  }
}

/* page & nav bar links transitions */
main {
  animation: transitionIn 2s;
}

@keyframes transitionIn {
  from {
    opacity: 0;
    transform: rotateX(10);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

/* scrollbar styling */
/* scrollbar styling -> width */
::-webkit-scrollbar {
  width: 10px;
}
/* scrollbar styling -> Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* scrollbar styling -> Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}
/* scrollbar styling -> Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* unordered list styling */
ul {
  list-style-type:none;
  font-size: 15px;
  padding: 0;
}

/* about text part */
.about {
  font-family:arial;
  font-size: 20px;
}
/* team info section (contact) styling */
.team {
  color: white;
  font-size: 17px;
  text-decoration: none;
}
.team:visited {
    text-decoration: none;
    color: white;
}
.team:hover {
  text-decoration: none;
  color: white;
}

/* bloks styling */
/* bloks styling -> main blok styling */
.block {
  background-color: #0c1014;
  padding: 10px;
  padding-bottom: 25px;
  margin: 25px auto;
  width: 97%;
  font-family: monospace;
  color: white;
}
/* bloks styling -> simulations bloks styling */
.sim-block{
  padding: 0px;
  background-color: transparent;
  border-color: transparent;
  transition: 0.3s;
}
.sim-block:hover {
  background-color: white;
  text-decoration: none;
  color: #45a29e;
  padding: 5px
}
.sim-block:visited {
  text-decoration: none;
  padding: 0px;
  background-color: transparent;
  border-color: transparent;
}
.sim-block h4 {
  font-size: 17px;
}

/**/
#value-g {
  color: white;
}
.calculate_button {
  background-color: #45a29e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.calculate_button:hover {
  background-color: #66fcf1;
  color: #1f2833;
}

/* footer styling */
.site-footer
{
  background-color:#1f2833;
  padding:45px 10px 20px;
  font-size:15px;
  line-height:24px;
  color:#45a29e;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#c5c6c7;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#45a29e
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:black
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#66fcf1;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
div .row {
  width:99%
}
